This handy function will make a string of n characters to a length that you specify. This is nice if you are trying to align columns by using a monospace font. You have to provide the string and the length you want the string. Optional parameters are side and the space character:
side: Which side should I add the spaces to? The default is "Right", and that would left justify everything by adding spaces on the right side. If you want right justification, specify "Left".
spaceChar: You don't have to use spaces. If you wanted to, you could add on periods, or whatever you want. The default is space.
-- part contents for background part 23
----- text -----
put spaces("23.35",8,"Left"," ") into msg --> 23.35
put spaces("Mike Gleason",maxFieldWidth) into line x of card field 88